home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk57 / expand / makefile < prev    next >
Encoding:
Makefile  |  1995-03-19  |  297 b   |  23 lines

  1. # Makefile for EXPAND using Manx C for the Amiga
  2.  
  3. #NDEBUG=-DNDEBUG
  4. NDEBUG=
  5.  
  6. CFLAGS=$(NDEBUG)
  7.  
  8.  
  9. OBJS=expand.o main.o nextcode.o system.o 
  10.  
  11. expand.exe: $(OBJS)
  12.     ln -o expand $(OBJS) c.lib
  13.  
  14.  
  15. $(OBJS): system.h
  16.  
  17.  
  18. expand.o: expand.h nextcode.h
  19.  
  20. main.o: main.h expand.h 
  21.  
  22. nextcode.o: nextcode.h expand.h
  23.